constraint-satisfaction - определение. Что такое constraint-satisfaction
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое constraint-satisfaction - определение

PROCESS OF FINDING A SOLUTION TO A SET OF CONSTRAINTS THAT IMPOSE CONDITIONS THAT THE VARIABLES MUST SATISFY
List of constraint satisfaction toolkits
Найдено результатов: 200
Constraint satisfaction         
In artificial intelligence and operations research, constraint satisfaction is the process of finding a solution through
constraint satisfaction         
<application> The process of assigning values to variables while meeting certain requirements or "constraints". For example, in graph colouring, a node is a variable, the colour assigned to it is its value and a link between two nodes represents the constraint that those two nodes must not be assigned the same colour. In scheduling, constraints apply to such variables as the starting and ending times for tasks. The Simplex method is one well known technique for solving numerical constraints. The search difficulty of constraint satisfaction problems can be determined on average from knowledge of easily computed structural properties of the problems. In fact, hard instances of NP-complete problems are concentrated near an abrupt transition between under- and over-constrained problems. This transition is analogous to phase transitions in physical systems and offers a way to estimate the likely difficulty of a constraint problem before attempting to solve it with search. {Phase transitions in search (ftp://parcftp.xerox.com/pub/dynamics/constraints.html)} (Tad Hogg, XEROX PARC). (1995-02-15)
Hierarchical constraint satisfaction         
Hierarchical-Constraint-Satisfaction; Hierarchical Constraint Satisfaction
In artificial intelligence and operations research, hierarchical constraint satisfaction (HCS) is a method of handling constraint satisfaction problems where the variables have large domains by exploiting their internal structure.
Constraint satisfaction problem         
MATHEMATICAL PROBLEMS DEFINED AS A SET OF OBJECTS WHOSE STATE MUST SATISFY A NUMBER OF CONSTRAINTS OR LIMITATIONS
Constraint Satisfaction Problems; Constraint-satisfaction problem; Constraint solving; MAX-CSP; Weighted CSP; Constraint Satisfaction Problem; Algorithms for constraint satisfaction; Algorithms for constraint satisfaction problems; Algorithms for solving constraint satisfaction problems; Methods for solving constraint satisfaction problems; Decentralized constraint satisfaction problem; Constraint satisfaction problems
Constraint satisfaction problems (CSPs) are mathematical questions defined as a set of objects whose state must satisfy a number of constraints or limitations. CSPs represent the entities in a problem as a homogeneous collection of finite constraints over variables, which is solved by constraint satisfaction methods.
Parallel constraint satisfaction processes         
Parallel Constraint Satisfaction Processes
Parallel constraint satisfaction processes (PCSP) is a model that integrates the fastest growing research areas in the study of the mind; Connectionism, neural networks, and parallel distributed processing models.Read, S.
Constraint (computational chemistry)         
  • Resolving the constraints of a rigid water molecule using [[Lagrange multipliers]]: a) the unconstrained positions are obtained after a simulation time-step, b) the [[gradients]] of each constraint over each particle are computed and c) the Lagrange multipliers are computed for each gradient such that the constraints are satisfied.
METHOD FOR SATISFYING THE NEWTONIAN MOTION OF A RIGID BODY WHICH CONSISTS OF MASS POINTS
SHAKE (constraint); SETTLE (constraint); LINCS (constraint); Constraint algorithm (mechanics); SHAKE algorithm; Simple constraint; M-SHAKE; SETTLE (algorithm); SETTLE; Constraint algorithm
In computational chemistry, a constraint algorithm is a method for satisfying the Newtonian motion of a rigid body which consists of mass points. A restraint algorithm is used to ensure that the distance between mass points is maintained.
Geometric constraint solving         
CONSTRAINT SATISFACTION IN A COMPUTATIONAL GEOMETRY SETTING
Draft:Geometric constraint solving
Geometric constraint solving is constraint satisfaction in a computational geometry setting, which has primary applications in computer aided design. A problem to be solved consists of a given set of geometric elements and a description of geometric constraints between the elements, which could be non-parametric (tangency, horizontality, coaxiality, etc) or parametric (like distance, angle, radius).
Constraint satisfaction dual problem         
A REFORMULATION OF A CONSTRAINT SATISFACTION PROBLEM EXPRESSING EACH CONSTRAINT OF THE ORIGINAL PROBLEM AS A VARIABLE. DUAL PROBLEMS ONLY CONTAIN BINARY CONSTRAINTS, AND ARE THEREFORE SOLVABLE BY ALGORITHMS TAILORED FOR SUCH PROBLEMS
Join graph
The dual problem is a reformulation of a constraint satisfaction problem expressing each constraint of the original problem as a variable. Dual problems only contain binary constraints, and are therefore solvable by algorithms tailored for such problems.
Budget constraint         
  • Budget constraint, where <math>A=\frac{m}{P_y}</math> and <math>B=\frac{m}{P_x}</math>
  • An individual should consume at (Qx, Qy).
  • Point X is unobtainable given the current "budget" constraints on production.
THE COMBINATIONS OF GOODS AND SERVICES THAT A CONSUMER MAY PURCHASE GIVEN CURRENT PRICES WITHIN THEIR GIVEN INCOME
Budget line; Resource constraint; Individual budget constraint; Budget Constraint; Soft budget constraint
In economics, a budget constraint represents all the combinations of goods and services that a consumer may purchase given current prices within his or her given income. Consumer theory uses the concepts of a budget constraint and a preference map as tools to examine the parameters of consumer choices .
Complexity of constraint satisfaction         
The complexity of constraint satisfaction is the application of computational complexity theory on constraint satisfaction. It has mainly been studied for discriminating between tractable and intractable classes of constraint satisfaction problems on finite domains.

Википедия

Constraint satisfaction

In artificial intelligence and operations research, constraint satisfaction is the process of finding a solution through a set of constraints that impose conditions that the variables must satisfy. A solution is therefore a set of values for the variables that satisfies all constraints—that is, a point in the feasible region.

The techniques used in constraint satisfaction depend on the kind of constraints being considered. Often used are constraints on a finite domain, to the point that constraint satisfaction problems are typically identified with problems based on constraints on a finite domain. Such problems are usually solved via search, in particular a form of backtracking or local search. Constraint propagation are other methods used on such problems; most of them are incomplete in general, that is, they may solve the problem or prove it unsatisfiable, but not always. Constraint propagation methods are also used in conjunction with search to make a given problem simpler to solve. Other considered kinds of constraints are on real or rational numbers; solving problems on these constraints is done via variable elimination or the simplex algorithm.

Constraint satisfaction as a general problem originated in the field of artificial intelligence in the 1970s (see for example (Laurière 1978)). However, when the constraints are expressed as multivariate linear equations defining (in)equalities, the field goes back to Joseph Fourier in the 19th century: George Dantzig's invention of the Simplex Algorithm for Linear Programming (a special case of mathematical optimization) in 1946 has allowed determining feasible solutions to problems containing hundreds of variables.

During the 1980s and 1990s, embedding of constraints into a programming language were developed. The first languages devised expressly with intrinsic support for constraint programming was Prolog. Since then, constraint-programming libraries have become available in other languages, such as C++ or Java (e.g., Choco for Java).